home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WTS 1.xpl < prev    next >
Text File  |  2002-01-03  |  1KB  |  42 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\Mouse\Terminal Server"
  5. "NAME"="Terminal Server Mouse Setting"
  6. "OSVERSION"="0101011"
  7. "VERSION"="1.04"
  8. "LANGUAGE"="VBScript"
  9. "WARNING"="1"
  10. "TEXT 1"="Interval (ms)"
  11. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com"
  14. "DESCRIPTION 1"="The client program for Windows Terminal Server (WTS) normally send the mouse position all 100 ms to the server."
  15. "DESCRIPTION 2"="In some cases, this can lead to chaotic mouse movemments on the server. Setting this interval to 10 ms will correct this, but also uses more bandwidth."
  16. "COMMENT 1"="MS KB: Q196460"
  17.  
  18. sP="HKCU\Software\Microsoft\Terminal Server Client\"
  19. sV1="Min Send Interval"
  20. SUB Plugin_Initialize
  21.  if RegPathExists(sP) then
  22.     i=RegReadValue(sP & sV1)
  23.     SetUiElement 1,i
  24.  else
  25.     Disable
  26.  end if
  27. END SUB
  28.  
  29. 'Called when the Plugin should validate the Data the user has entered
  30. SUB Plugin_CheckData(ElementIndex)
  31. END SUB
  32.  
  33. 'Called when the Plugin should apply the changes
  34. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  35.   i=GetUIElement(1)
  36.   Call RegWriteValue(sp & sv1,i,2)
  37. END SUB
  38.  
  39. 'Called when the Plugin is about to be removed from memory
  40. SUB Plugin_Terminate
  41. END SUB
  42.